/* ---------- FONTS: Proxima Nova ---------- */
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Light.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-LightIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-LightIt.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Regular.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-RegularIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-RegularIt.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Semibold.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-SemiboldIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-SemiboldIt.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-BoldIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-BoldIt.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Extrabld.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Extrabld.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-ExtrabldIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-ExtrabldIt.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-Black.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("./assets/fonts/ProximaNova-BlackIt.woff2") format("woff2"),
    url("./assets/fonts/ProximaNova-BlackIt.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --green: #1f7a4d;
  --green-300: #30b85e;
  --green-400: #15522a;
  --green-dark: #145c38;

  --gradient-green: linear-gradient(90deg, #30b85e 0%, #17532b 100%);
  --btn-gradient-green: linear-gradient(90deg, #30b85e 0%, #15522a 100%);
  --next-chapter-gradient: radial-gradient(
      120% 80% at 20% 0%,
      #ceffcf 0%,
      rgba(255, 231, 206, 0) 55%
    ),
    radial-gradient(
      90.34% 128.19% at 50% 100%,
      #f8ffd7 0%,
      rgba(255, 244, 215, 0) 34.62%
    );

  --cream: #fbf6e7;
  --mint: #eef8ee;
  --text: #1c2b22;
  --muted: #5b6b60;

  --blue-400: #25293f;

  --brown-400: #725f54;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Proxima Nova", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  font-family: "Proxima Nova", sans-serif;
  line-height: 1.15;
}
h1 {
  font-weight: 800;
  font-size: 88px;
  line-height: 90px;
  text-align: center;
}
h2 {
  font-weight: 800;
  font-size: 60px;
  line-height: 63px;
  text-align: center;
}

.section {
  position: relative;
  padding: 90px 24px;
  overflow: hidden;
}
.section-hero {
  padding: 169px 24px 119px;
}
.section.gradient-cream {
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    #ffffff 45%,
    var(--mint) 100%
  );
}
.section.gradient-mint {
  background: linear-gradient(
    160deg,
    var(--mint) 0%,
    #ffffff 60%,
    var(--mint) 100%
  );
}
.section.gradient-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
}
.section.gradient-hero {
  background: linear-gradient(180deg, #fffdfa 0%, #fffaed 100%),
    radial-gradient(
      120% 100% at 50% 100%,
      #f8ffd7 0%,
      rgba(255, 244, 215, 0) 60%
    ),
    radial-gradient(100% 80% at 80% 10%, #e1ffe9 0%, rgba(255, 225, 231, 0) 55%),
    radial-gradient(120% 80% at 20% 0%, #ceffcf 0%, rgba(255, 231, 206, 0) 55%);

  color: #fff;
}
.inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  padding: 7px 32px;
  background: #ffffff99;
  border: 1px solid #d7eeda;
  border-radius: 999px;
  font: 500 12px / 16px "Inter", sans-serif;
  letter-spacing: 2px;
  color: var(--brown-400);
  text-align: center;
  text-transform: uppercase;
}
.section.gradient-green .eyebrow {
  color: #cdeedd;
}

.accent {
  background-image: var(--gradient-green);
  color: transparent;
  background-clip: text;
}
.section.gradient-green .accent {
  color: #c9f2c9;
}
p.lead {
  text-align: center;
  max-width: 640px;
  margin: 36px auto 0;
  color: var(--blue-400);
  font-size: 17px;
  line-height: 1.6;
}
.section.gradient-green p.lead {
  color: #e4f3ea;
}
.cta-row {
  margin-top: 29px;
  display: flex;
  justify-content: center;
}
.btn {
  padding: 20px 34px;
  color: #fff;
  gap: 7px;
  background: var(--btn-gradient-green);
  border: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: unset;
}
.open-popup-link{
  color:white;
}
.btn span {
  font: 600 20px / 24px "Proxima Nova", sans-serif;
  text-align: center;
  color: #fff;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 122, 77, 0.35);
}
.btn.light {
  background: #fff;
  color: var(--green-dark);
}

/* ---------- HERO VIDEO BLOCK ---------- */
.video-frame {
  position: relative;
  max-width: 1024px;
  margin: 81px auto 0;
  border-radius: 32px;
  overflow: hidden;
  /*background: linear-gradient(160deg, #0d2a1a, #08150d);*/
  background: url("./assets/anniversary/video.png") center / cover  no-repeat;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ecffe899;
  box-shadow: 0px 30px 60px -25px #bb654640;
  cursor: pointer;
}
.video-frame.is-playing {
  cursor: default;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame .caption {
  position: absolute;
  left: 25px;
  bottom: 21px;
  padding: 4px 12px;
  background: #ffffffb2;
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font: 400 12px / 16px "Proxima Nova", sans-serif;
  color: #271610b2;
  text-align: center;
}
.play-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #ffffffe5;
  border: 1px solid #ecffe899;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 20px 50px -12px #b3f2c8, 0px 0px 0px 1px #30b85e;
}

/* ---------- CHECKLIST GRID ---------- */
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-3 {
  margin-top: 47px;
  gap: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.check-card {
  padding: 29px 29px 18px 29px;
  gap: 21px;
  background: #fff;
  border: 1px solid #d7eed7;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 30px -12px #d4896e2e;
}
.check-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #15522a 0%, #30b85e 100%);
  box-shadow: 0px 10px 30px -12px #d4896e2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-card span.label {
  font: 400 18px / 25px "Inter", sans-serif;
  color: var(--blue-400);
}
.slick-dots li{
  align-items: center;
}
/* ---------- HALL OF FAME GALLERY (slick slider) ---------- */
.gallery {
  width: 100%;
  margin: 81px 0 58px;
}
.gallery .photo-slide {
  padding: 0 7px;
}
.gallery .photo-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 276 / 414;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(20, 60, 40, 0.12);
}
.gallery .slick-track {
  height: 415px;
  display: flex;
  align-items: center;
}

.gallery .slick-slide {
  position: relative;
  z-index: 1;
  transform: scale(0.82);
  transition: transform 0.4s ease;
  display: flex !important;
  align-items: center;
}
.gallery .slick-slide:has(+ .slick-slide + .slick-center),
.gallery .slick-center + .slick-slide + .slick-slide {
  z-index: 2;
  transform: scale(0.9);
}
.gallery .slick-slide:has(+ .slick-center),
.gallery .slick-center + .slick-slide {
  z-index: 3;
  transform: scale(1.02);
}
.gallery .slick-slide.slick-center {
  z-index: 4;
  transform: scale(1.28);
}
/* dots */
.gallery .slick-dots {
  margin-top:10px;
  position: relative;
  gap: 20px;
  display: flex !important;
  justify-content: center;
  padding: 0;
  list-style: none;
  bottom:0;
}
.slick-dots li{
  display: flex;
  margin: 0 ;
  align-items: center!important;
  justify-content: center!important;
}
.gallery .slick-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border: 1px solid var(--green-400);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s linear;
}
.gallery .slick-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-300);
  opacity: 0;
  transition: all 0.3s linear;
}
.gallery .slick-dots .slick-active button {
  width: 20px;
  height: 20px;
}
.gallery .slick-dots .slick-active button::before {
  opacity: 1;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 2px;
  background: #dbe7dd;
}
.t-item {
  flex: 1;
  width: calc((100% - 120px) / 6);
  text-align: center;
  position: relative;
}
.t-item::before {
  content: "";
  position: absolute;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #30b85e 0%, #15522a 100%);
  box-shadow: 0px 10px 30px -12px #d4896e2e;
}
.t-item .year {
  font-weight: 400;
  background: linear-gradient(180deg, #30b85e 0%, #15522a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 46px;
  font-size: 30px;
  line-height: 36px;
}
.t-item p {
  font: 400 14px / 23px "Inter", sans-serif;
  color: var(--blue-400);
}

/* ---------- PROJECT COVERS ---------- */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.cover-card {
  background: #fff;
  border: 1px solid #eef0ef;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 10px 30px -12px #d4896e2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20, 60, 40, 0.16);
}
.cover-card__img {
  width: 100%;
  aspect-ratio: 221 / 350;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.cover-card .meta {
  padding: 10px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.meta__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.meta__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta__info b {
  font: 500 14px / 18px "Inter", sans-serif;
  color: var(--blue-400);
}
.meta__info span {
  font: 400 12px / 15px "Inter", sans-serif;
  color: var(--muted);
}

.testimonial {
  position: relative;
  max-width: 1019px;
  margin: 60px auto 0;
  padding: 12px 24px 12px 16px;
  column-gap: 56px;
  row-gap: 54px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "avatar text"
    "avatar who";
  align-content: center;
  align-items: center;
  background: linear-gradient(270deg, #ffffff 0%, #f4fff7 100%);
  border: 1px solid var(--green-400);
  border-top-left-radius: 1000px;
  border-top-right-radius: 160px;
  border-bottom-right-radius: 160px;
  border-bottom-left-radius: 1000px;
  backdrop-filter: blur(8px);
}
.testimonial__quote {
  position: absolute;
  top: -28px;
  left: 27%;
  width: 76px;
  height: 76px;
}
.testimonial__avatar {
  grid-area: avatar;
  width: 228px;
  height: 228px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__text {
  grid-area: text;
  align-self: end;
  font: 300 italic 30px / 39px "Proxima Nove", sans-serif;
  color: var(--blue-400);
}
.testimonial .who {
  grid-area: who;
  align-self: start;
  font: 400 14px / 20px "Proxima Nove", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-400);
}

/* ---------- GIFT SECTION ---------- */
.gift__bg-wrap {
  position: absolute;
}
.gift__star {
  top: 0;
  right: 0;
  width: 414px;
  height: 839px;
}
.gift__bg {
  width: 550px;
  height: 550px;
  bottom: 0;
  left: 0;
}
.gift__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.gift-wrap {
  margin-top: 76px;
  padding: 53px 57px 58px;
  column-gap: 70px;
  row-gap: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "visual text"
    "visual btn";
  align-items: center;
  background: linear-gradient(180deg, #f4fff5 0%, #fffaed 100%);
  border: 1px solid #c6ffda;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0px 2px 4px 0px #00000040;
}
.gift-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-text {
  grid-area: text;
}
.gift-text h3 {
  font: 700 48px / 53px "Inter", sans-serif;
  letter-spacing: -1px;
  color: var(--blue-400);
}
.gift-text__accent {
  font: 800 italic 48px / 53px "Inter", sans-serif;
}
.gift-text__desc {
  margin-top: 27px;
  font: 400 18px / 29px "Inter", sans-serif;
  color: var(--brown-400);
}
.gift-list {
  margin-top: 27px;
  gap: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.gift-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 400 16px / 24px "Inter", sans-serif;
  color: var(--blue-400);
}
.gift-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url("./assets/anniversary/check.svg") center / contain no-repeat,
    linear-gradient(90deg, #30b85e 0%, #15522a 100%);
}
.gift-btn {
  grid-area: btn;
  width: 100%;
  justify-content: center;
  gap: 9px;
}

/* ---------- FALLING EMOJI ---------- */
.emoji-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.falling-emoji {
  position: absolute;
  top: -60px;
  will-change: transform, opacity;
  animation-name: fallDown;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  user-select: none;
}
@keyframes fallDown {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(var(--drift), var(--fall)) rotate(var(--rot));
  }
}

/* ---------- FADE IN ON SCROLL ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stagger .fade-in:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger .fade-in:nth-child(2) {
  transition-delay: 0.15s;
}
.stagger .fade-in:nth-child(3) {
  transition-delay: 0.25s;
}
.stagger .fade-in:nth-child(4) {
  transition-delay: 0.35s;
}
.stagger .fade-in:nth-child(5) {
  transition-delay: 0.45s;
}
.stagger .fade-in:nth-child(6) {
  transition-delay: 0.55s;
}
.accent-brown {
  color: var(--brown-400);
}
.hero-img {
  position: absolute;
  pointer-events: none;
}
.accent-green {
  font-weight: 700;
  font-style: italic;
  color: var(--green-400);
}

.hero-img__ten {
  top: 48%;
  left: 14%;
  transform: translateY(-50%);
  width: 326px;
  height: 466px;
}
.hero-img__balloon {
  top: 21px;
  right: 10%;
  width: 218px;
  height: 604px;
}
.hero-img__balloon-mob {
  display: none;
  bottom: 0;
  right: -130px;
  width: 250px;
  height: 694px;
}
.hero-img__star {
  bottom: 21px;
  right: 18%;
  width: 414px;
  height: 414px;
}
.hero__ttl {
  position: relative;
  color: var(--blue-400);
}
.hero-img__ttl {
  top: 0px;
  left: 0px;
  width: 85px;
  height: 85px;
  z-index: -1;
}
.hero__txt {
  max-width: 640px;
  margin: 36px auto 0;
  font: 400 20px / 120% "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}

.section-offer {
  padding: 104px 24px 90px;
}
.offer__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.offer__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.offer__ttl {
  font: 900 40px / 46px "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}
.offer__ttl .accent {
  font: 900 60px / 63px "Proxima Nova", sans-serif;
}
.offer__txt {
  max-width: 670px;
  margin: 47px auto 0;
  text-align: center;
  font: 400 20px / 120% "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}
.offer__cta-row {
  margin-top: 29px;
}

.section-fame {
  padding: 106px 0 107px;
}
.fame__content-wrap {
  width: 100%;
  max-width: 1554px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fame__ttl {
  width: 100%;
  max-width: 700px;
  margin: 24px auto 0;
  padding: 0 16px;
  letter-spacing: -1.2px;
}
.fame__ttl-accent {
  font-style: italic;
}
.fame__txt {
  width: 100%;
  max-width: 765px;
  margin: 24px auto 0;
  padding: 0 16px;
  font: 400 20px / 120% "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}

.timeline-img {
  position: absolute;
}
.timeline__ten {
  top: 62px;
  left: 13%;
  width: 509px;
  height: 728px;
}
.timeline__balloon {
  bottom: -20%;
  right: 15%;
  width: 250px;
  height: 694px;
}
.section-timeline {
  padding: 113px 16px 147px;
}
.timeline__content-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__ttl {
  margin-top: 23px;
}
.timeline__accent {
  font-style: italic;
}
.timeline__txt {
  width: 100%;
  max-width: 1008px;
  margin-top: 70px;
  font: 400 18px / 29px "Inter", sans-serif;
  color: var(--brown-400);
  text-align: center;
}

.section-projects {
  padding: 188px 24px;
  background: linear-gradient(227.44deg, #fffaed 0%, #edffef 100%);
}
.projects-img {
  position: absolute;
}
.projects__balloon {
  top: 7%;
  left: 13%;
}
.projects__zero {
  width: 305px;
  height: 728px;
  top: 19%;
  right: 11%;
}
.projects__one {
  width: 207px;
  height: 728px;
  bottom: 2%;
  left: 10%;
}
.projects__bg {
  width: 550px;
  height: 550px;
  bottom: 0;
  right: 0;
}
.projects__ttl-accent {
  font-style: italic;
}
.projects__txt {
  width: 100%;
  max-width: 1143px;
  margin: 40px auto 0;
  font: 400 20px / 29px "Inter", sans-serif;
  color: var(--blue-400);
  text-align: center;
}

.section-gift {
  padding: 148px 24px 142px;
}
.gift__ttl-accent {
  font-style: italic;
}

.section-final {
  background: var(--next-chapter-gradient);
  padding: 98px 24px;
}
.final__ttl {
  font: 700 72px / 74px "Proxima Nova", sans-serif;
  color: var(--blue-400);
}
.final__accent {
  font-style: italic;
}
.final__txt {
  width: 100%;
  max-width: 650px;
  margin: 45px auto 0;
  font: 400 20px / 33px "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}
.final__txt b {
  font-style: italic;
  color: var(--green-400);
}
.final__discount {
  margin-top: 45px;
  font: 700 20px / 120% "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}
.final__discount-label {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 0.3px solid #b4b4b4;
  border-radius: 38px;
  box-shadow: 0px 2px 4px 0px #00000040;
  font: 800 20px / 31px "Proxima Nova", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.final__quote {
  position: relative;
  width: 100%;
  max-width: 670px;
  margin: 22px auto 0;
  padding: 0 123px;
  font: 400 italic 20px / 120% "Proxima Nova", sans-serif;
  color: var(--blue-400);
  text-align: center;
}
.final__quote::after,
.final__quote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 117px;
  height: 2px;
  background: url("./assets/anniversary/final-quote-line.png") center / contain
    no-repeat;
}
.final__quote::after {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.final__cta-row {
  margin-top: 45px;
}
.label-mob{
  display: none;
}
.form__wrapper{
  display: flex;
  max-width: 794px;
  width: 100%;
  margin: 0 auto;
  background:#fff;
  overflow: hidden;
  border-radius:16px ;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 72px;
  }
  .gallery .slick-track {
    height: 63vw;
  }
}

@media (max-width: 768px) {
  .grid-3 {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial {
    margin-top: 53px;
    padding: 8px 13px 19px 10px;
    column-gap: 7px;
    row-gap: 15px;
    grid-template-areas:
      "avatar text"
      "who who";
    align-items: start;
    border-radius: 51px 32px 32px 20px;
  }
  .testimonial__quote {
    top: -24px;
    left: auto;
    right: -20px;
    width: 64px;
    height: 64px;
  }
  .testimonial__avatar {
    width: 86px;
    height: 86px;
  }
  .testimonial__text {
    align-self: center;
    font-size: 18px;
    line-height: 120%;
  }
  .testimonial .who {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3px;
  }
  .gift-wrap {
    margin-top: 20px;
    padding: 67px 22px 66px;
    row-gap: 27px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "visual"
      "btn";
    border-radius: 40px;
  }
  .gift-text h3 {
    font: 700 35px / 120% "Inter", sans-serif;
  }
  .gift-text__accent {
    font: 800 35px / 120% "Inter", sans-serif;
  }
  .gift-text__desc {
    font-size: 18px;
    line-height: 29px;
  }
  .gift-list li {
    align-items: flex-start;
  }
  .gift-visual img {
    max-width: 260px;
  }
  .gift-btn {
    gap: 8px;
  }
  .gift-btn svg {
    min-width: 40px;
    min-height: 40px;
  }
  .gift-btn span {
    font-size: 17px;
    line-height: 22px;
  }
  .timeline {
    flex-direction: column;
    gap: 44px;
    margin-top: 23px;
  }
  /* вертикальна лінія */
  .timeline::before {
    top: -12px;
    bottom: -12px;
    left: 40%;
    right: auto;
    width: 2px;
    height: auto;
    background: #9ccfad;
  }
  .t-item {
    flex: unset;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
  }
  /* крапка на лінії, по центру рядка */
  .t-item::before {
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
  .t-item .year {
    width: 40%;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-right: 38px;
    font-size: 38px;
    line-height: 46px;
    text-align: right;
  }
  .t-item p {
    flex: 1;
    padding-left: 24px;
    font-size: 15px;
    line-height: 25px;
  }

  .offer__ttl {
    font: 900 36px / 46px "Proxima Nova", sans-serif;
  }
  .offer__ttl .accent {
    font: 900 55px / 63px "Proxima Nova", sans-serif;
  }

  .gift__bg-wrap {
    display: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 65px;
  }
  .video-frame {
    margin: 39px auto 0;
  }
  .play-btn {
    width: 30px;
    height: 30px;
  }
  .play-btn svg {
    width: 12px;
    height: 12px;
  }
  .video-frame .caption {
    left: 8px;
    bottom: 14px;
    padding: 2px 4px;
    font: 400 7px / 8px "Proxima Nova", sans-serif;
  }
  .grid-3 {
    margin-top: 23px;
  }
  .check-card {
    padding: 29px 19px 39px;
    gap: 44px;
  }
  .check-icon {
    margin-left: 10px;
  }

  .section-hero {
    padding: 279px 24px 45px;
  }
  .hero-img__ten {
    top: 41px;
    left: unset;
    right: 28px;
    transform: unset;
    z-index: 2;
    width: 194px;
    height: 278px;
  }
  .hero-img__balloon {
    top: -130px;
    right: unset;
    left: 31px;
    width: 250px;
    height: 694px;
  }
  .hero-img__balloon-mob {
    display: block;
  }
  .hero-img__ttl {
    top: 10px;
    left: unset;
    right: -20px;
    width: 56px;
    height: 56px;
  }

  .section-offer {
    padding: 50px 19px;
  }
  .offer__txt {
    margin: 23px auto 0;
  }

  .section-fame {
    padding: 83px 0 82px;
  }
  .fame__ttl,
  .fame__txt {
    margin: 35px auto 0;
  }
  .gallery {
    margin: 35px 0 11px;
  }

  .section-timeline {
    padding: 50px 16px;
  }
  .timeline__txt {
    margin-top: 23px;
  }
  .timeline__ten {
    top: unset;
    left: -33%;
    bottom: -19%;
  }
  .timeline__balloon {
    bottom: unset;
    top: 8%;
    right: -25%;
  }

  .section-projects {
    padding: 106px 24px 105px;
  }
  .projects__bg {
    display: none;
  }
  .projects__balloon {
    top: -2%;
    left: -30%;
  }
  .projects__zero {
    top: 2%;
    right: -35%;
  }
  .projects__one {
    bottom: -11%;
    left: -20%;
  }
  .projects__ttl {
    font: 700 55px / 63px "Proxima Nova", sans-serif;
  }
  .projects__txt {
    margin: 53px auto 0;
  }
  .cover-grid {
    margin-top: 53px;
    gap: 14px;
  }
  .meta__info b {
    font: 500 10px / 13px "Inter", sans-serif;
  }
  .meta__info span {
    font: 400 8px / 10px "Inter", sans-serif;
  }

  .section-gift {
    padding: 50px 24px;
  }
  .gift__ttl {
    font: 700 45px / 120% "Proxima Nova", sans-serif;
  }

  .final__ttl {
    font: 700 45px / 120% "Proxima Nova", sans-serif;
  }
  .final__discount {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .final__quote {
    margin: 40px auto 0;
    padding: 0 40px;
  }
  .final__quote::after,
  .final__quote::before {
    width: 30px;
  }
  .video-frame{
    border-radius: 10px;
  }
  .label-desk{
    display: none;
  }
  .label-mob{
    display: block;
  }
  .gallery .slick-track{
    height: 133vw;
  }
}

@media (max-width: 424px) {
  .hero__ttl {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falling-emoji {
    display: none;
  }
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
